home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000254_news@columbia.edu_Thu Apr 27 14:39:59 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA08404
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 27 Apr 1995 10:40:15 -0400
  3. Received: by apakabar.cc.columbia.edu id AA00633
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 27 Apr 1995 10:40:11 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  6. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Using OS/2 C-Kermit 191 with SLIP.EXE
  9. Date: 27 Apr 1995 14:39:59 GMT
  10. Organization: Columbia University
  11. Lines: 71
  12. Distribution: usa
  13. Message-Id: <3noabv$ie@apakabar.cc.columbia.edu>
  14. References: <3nn3ib$dut@vixen.cso.uiuc.edu>
  15. Nntp-Posting-Host: watsun.cc.columbia.edu
  16. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17.  
  18. In article <3nn3ib$dut@vixen.cso.uiuc.edu>,
  19. Adam H. Lewenberg <adam@symcom.math.uiuc.edu> wrote:
  20. >I am a little confused by some of the explanation in the "Updates to
  21. >Using C-Kermit" that comes with OS/2 C-Kermit 5A(191). In particular,
  22. >the section titled "Using C-Kermit to make SLIP connections". From
  23. >that section:
  24. >
  25. >    "Note that C-Kermit should not be used as part of an attachment
  26. >     script, which is started by the SLIP driver itself, but should be
  27. >     run as a separate command _after_ [emphasis mine] the SLIP driver
  28. >     is started. Should scripting be required, you can use Kermit
  29. >     scripts [..] to perform the same tasks as an attachment script."
  30. >     
  31. >
  32. >Doen't this paragraph contradict itself? First it says not to use
  33. >C-Kermit as part of an attachment script, but then it says you CAN use
  34. >C-Kermit as an attachment script. What exactly is meant by this
  35. >paragraph?
  36.  
  37. Pretty straight forward.  DO NOT USE KERMIT in an attach.cmd file.
  38. In fact do not use an attach.cmd file at all.
  39.  
  40.  
  41. Here is how I connect to Columbia's SLIP service.
  42.  
  43. STart SLIP.EXE
  44. Execute ckermit -C "slip"
  45.  
  46. where the macro slip is defined as:
  47. define slip-
  48.     access slipwatts,-
  49.     input 5 >,-
  50.     output login\13,-
  51.     input 5 login:,-
  52.     output jaltman\13,-
  53.     input 5 password:,-
  54.     output firehorse\13,-
  55.     input 5 >,-
  56.     output slip\13,-
  57.     set port com1,-
  58.     !bootp sl0,-
  59.     telnet kermit
  60.  
  61. and slipwatts is a services directory entry:
  62. slipwatts  nologin xxxxx call hayes slipcom1 57600 1-212-854-3726
  63.  
  64.  
  65. >
  66. >A further but related question: let's say I want to use C-Kermit to
  67. >dial-up a slip server, and then start SLIP.EXE that comes with OS/2
  68. >Warp. How does one do this? In particular, what command-line options
  69. >should be given to SLIP.EXE? When should SLIP.EXE be started, before
  70. >reaching the server or only after starting the remote slip connection? 
  71. >Maybe someone can give a careful explanation of how all the pieces fit
  72.  
  73. The paragraph above says that SLIP should be started before C-Kermit.
  74. You SLIP settings should be defined in your SLIP.CFG file in the ETC
  75. directory.  And the values of those settings should be received from
  76. your SLIP provider.
  77.  
  78. I use BOOTP to get the IP Address information.  If your provider
  79. does not support it then you must use a series of INPUT commands 
  80. and the \v(input) variable to capture the necessary IP addresses
  81. and then use ifconfig to install them.
  82.  
  83.  
  84.  
  85. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  86. NEW: OS/2 C-Kermit 5A(191): 
  87.    ftp://kermit.columbia.edu/kermit/archives/cko191.zip 
  88.    http://www.columbia.edu/kermit/cko191.html